home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ FileCache Settings.xpl < prev    next >
Text File  |  1999-06-14  |  1KB  |  60 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="2"
  3. "COUNT"="2"
  4. "UIPATH"="System\File System\Options"
  5. "NAME"="Windows 95 File Cache"
  6. "VERSION"="1.31"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Min. Cache (K)"
  9. "TEXT 2"="Max. Cache (K)"
  10. "DESCRIPTION 1"="If you want to control Windows how much RAM it should use for the file cache, enter the desired values here."
  11. "DESCRIPTION 2"="Note: These settings have no effect if you are using Windows NT or Windows 98."
  12. "DESCRIPTION 3"=""
  13. "AUTHOR"="Xteq Systems"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  16.  
  17. sf="SYSTEM.INI"
  18. ss="vCache"
  19. v1="MinFileCache"
  20. v2="MaxFileCache"
  21.  
  22. Sub Plugin_Initialize 
  23.  if GetWinVer=2 or GetWinVer=3 then
  24.   Disable 
  25.  else
  26.   i=IniReadValue(sf,ss,v1)
  27.   SetUIElement 1,i
  28.  
  29.   i=IniReadValue(sf,ss,v2)
  30.   SetUIElement 2,i
  31.  end if
  32. End Sub
  33.  
  34. Sub Plugin_CheckData(ElementIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  i=GetUIElement(1)
  39.  if len(i)=0 then
  40.   Call IniWriteValue(sf,ss,v1,"")
  41.  else
  42.   Call IniWriteValue(sf,ss,v1,i)
  43.  end if
  44.  
  45.  i=GetUIElement(2)
  46.  if len(i)=0 then
  47.   Call IniWriteValue(sf,ss,v2,"")
  48.  else
  49.   Call IniWriteValue(sf,ss,v2,i)
  50.  end if
  51.  
  52.  Restart
  53. End Sub
  54.  
  55. Sub Plugin_Terminate 
  56. End Sub
  57.  
  58.  
  59.  
  60.